home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Demos / Bare Bones Software / BBEdit 4.0 / ToolServer Support / Copy to MPW Scripts folder / BBEdit•Line < prev   
Text File  |  1992-08-30  |  340b  |  18 lines

  1. #    Line - find line number
  2. #
  3. #    Usage:
  4. #        Line n
  5. #
  6. #    Line finds line n in the target window.
  7. #    The target window becomes the active (topmost) window.
  8. #
  9. #    Copyright Apple Computer, Inc. 1986 - 1990
  10. #    All rights reserved.
  11.  
  12. if "{BBEditExists}" == ""
  13.     Find "{1}" "{Target}" > Dev:StdErr
  14.     Open "{Target}" > Dev:StdErr
  15. else
  16.     RBBEdit line "{1}"
  17. end
  18.